home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / dom / OwnedAttr.class (.txt) < prev   
Encoding:
Java Class File  |  2000-06-30  |  2.8 KB  |  134 lines

  1. package com.extensibility.dom;
  2.  
  3. import org.w3c.dom.Attr;
  4. import org.w3c.dom.DOMException;
  5. import org.w3c.dom.Document;
  6. import org.w3c.dom.Element;
  7. import org.w3c.dom.NamedNodeMap;
  8. import org.w3c.dom.Node;
  9. import org.w3c.dom.NodeList;
  10.  
  11. public final class OwnedAttr implements Attr {
  12.    Attr attr;
  13.    Element elem;
  14.  
  15.    public OwnedAttr(Node var1, Node var2) {
  16.       this.attr = (Attr)var1;
  17.       this.elem = (Element)var2;
  18.    }
  19.  
  20.    public Element getOwnerElement() {
  21.       return this.elem;
  22.    }
  23.  
  24.    public String getNodeName() {
  25.       return this.attr.getNodeName();
  26.    }
  27.  
  28.    public String getNodeValue() throws DOMException {
  29.       return this.attr.getNodeValue();
  30.    }
  31.  
  32.    public void setNodeValue(String var1) throws DOMException {
  33.       this.setNodeValue(var1);
  34.    }
  35.  
  36.    public short getNodeType() {
  37.       return this.attr.getNodeType();
  38.    }
  39.  
  40.    public Node getParentNode() {
  41.       return this.attr.getParentNode();
  42.    }
  43.  
  44.    public NodeList getChildNodes() {
  45.       return this.attr.getChildNodes();
  46.    }
  47.  
  48.    public Node getFirstChild() {
  49.       return this.attr.getFirstChild();
  50.    }
  51.  
  52.    public Node getLastChild() {
  53.       return this.attr.getLastChild();
  54.    }
  55.  
  56.    public Node getPreviousSibling() {
  57.       return this.attr.getPreviousSibling();
  58.    }
  59.  
  60.    public Node getNextSibling() {
  61.       return this.attr.getNextSibling();
  62.    }
  63.  
  64.    public NamedNodeMap getAttributes() {
  65.       return this.attr.getAttributes();
  66.    }
  67.  
  68.    public Document getOwnerDocument() {
  69.       return this.attr.getOwnerDocument();
  70.    }
  71.  
  72.    public Node insertBefore(Node var1, Node var2) throws DOMException {
  73.       return this.attr.insertBefore(var1, var2);
  74.    }
  75.  
  76.    public Node replaceChild(Node var1, Node var2) throws DOMException {
  77.       return this.attr.replaceChild(var1, var2);
  78.    }
  79.  
  80.    public Node removeChild(Node var1) throws DOMException {
  81.       return this.attr.removeChild(var1);
  82.    }
  83.  
  84.    public Node appendChild(Node var1) throws DOMException {
  85.       return this.attr.appendChild(var1);
  86.    }
  87.  
  88.    public boolean hasChildNodes() {
  89.       return this.attr.hasChildNodes();
  90.    }
  91.  
  92.    public Node cloneNode(boolean var1) {
  93.       return this.attr.cloneNode(var1);
  94.    }
  95.  
  96.    public String getName() {
  97.       return this.attr.getName();
  98.    }
  99.  
  100.    public boolean getSpecified() {
  101.       return this.attr.getSpecified();
  102.    }
  103.  
  104.    public String getValue() {
  105.       return this.attr.getValue();
  106.    }
  107.  
  108.    public void setValue(String var1) {
  109.       this.attr.setValue(var1);
  110.    }
  111.  
  112.    public void setPrefix(String var1) {
  113.    }
  114.  
  115.    public String getPrefix() {
  116.       return null;
  117.    }
  118.  
  119.    public String getNamespaceURI() {
  120.       return null;
  121.    }
  122.  
  123.    public boolean supports(String var1, String var2) {
  124.       return false;
  125.    }
  126.  
  127.    public void normalize() {
  128.    }
  129.  
  130.    public String getLocalName() {
  131.       return null;
  132.    }
  133. }
  134.